home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
mus
/
edit
/
OctamedSS1.03c.lha
/
Soundstudio
/
Rexx
/
omed.lha
/
rexx
/
convtomix.omed
< prev
next >
Wrap
Text File
|
1995-06-22
|
391b
|
17 lines
/* convtomix */
/* converts old OctaMED/tracker modules to play right under */
/* the new mixing routine (transposes samples two octaves up */
address 'OCTAMED_REXX'
options results
do cnt = 1 to 63
in_select ins cnt
in_gettype
instype = result
if (instype = "SAMPLE" | instype = "HYBRID") then do
in_gettranspose
transp = result
in_settranspose transp+24
end
end
in_select ins 1